home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <condefs.h>
- #include <conio.h>
- #include <iostream.h>
- #pragma hdrstop
-
- //---------------------------------------------------------------------------
- //
- // We comment out the argc and argv variables to avoid
- // compiler warnings.
- //
- int main(int /*argc*/, char /***argv*/)
- {
- short x = 32767;
- cout << "x = " << x << endl;
- x++;
- cout << "x = " << x << endl;
- getch();
- return 0;
- }
- //---------------------------------------------------------------------------
-
-